home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / overview / dtscpluslibrary / sources / templatetest.cp < prev    next >
Encoding:
Text File  |  2000-06-23  |  1.0 KB  |  42 lines

  1. /*
  2.     File:        TemplateTest.cp
  3.  
  4.     Contains:    
  5.  
  6.     Written by: Kent Sandvik    
  7.  
  8.     Copyright:    Copyright © 1992-1999 by Apple Computer, Inc., All Rights Reserved.
  9.  
  10.                 You may incorporate this Apple sample source code into your program(s) without
  11.                 restriction. This Apple sample source code has been provided "AS IS" and the
  12.                 responsibility for its operation is yours. You are not permitted to redistribute
  13.                 this Apple sample source code as "Apple sample source code" after having made
  14.                 changes. If you're going to re-distribute the source, we require that you make
  15.                 it clear in the source that the code was descended from Apple sample source
  16.                 code, but that you've made changes.
  17.  
  18.     Change History (most recent first):
  19.                 8/18/1999    Karl Groethe    Updated for Metrowerks Codewarror Pro 2.1
  20.                 
  21.  
  22. */
  23. // ••• Specify here the one and only C++ class file
  24. // Include files
  25. #ifndef _FOO_
  26. #include "Template.h"
  27. #endif
  28.  
  29. // ••• Specify here a short description of the tests below
  30.  
  31. main()
  32. {
  33.     cout << "Start TFoo testing…\n";
  34.  
  35.  
  36.     cout << "End TFoo testing!\n";
  37.  
  38.     return 0;
  39. }
  40.  
  41.  
  42.